    /* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #034295; 
  background-color: #f8faff;
  line-height: 1.6;
}

/* Hero Section */
.hero-sections {
  display: flex;
flex-direction: column;
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero-sections h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-sections p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #034295;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service {
  border: 2px solid #034295;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: white;
}

.service:hover {
  background-color: #034295;
  color: white;
  transform: scale(1.05);
}

/* Why Choose Section */
.why-choose {
  background-color: #eaf0f8;
  padding: 60px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.why-choose li {
  font-size: 1rem;
  margin: 10px 0;
  transition: transform 0.3s;
}

.why-choose li:hover {
  transform: translateX(10px);
  color: #003366;
}

/* Contact Section */
.contact {
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 15px;
}

.contact-info a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: white;
}

/* Scroll Hover Animation */
html {
  scroll-behavior: smooth;
}

